home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Python / protos / sysmodule.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-10  |  1008 b   |  20 lines

  1. static PyObject *sys_exc_info ( PyObject *self , PyObject *args );
  2. static PyObject *sys_exit ( PyObject *self , PyObject *args );
  3. static PyObject *sys_settrace ( PyObject *self , PyObject *args );
  4. static PyObject *sys_setprofile ( PyObject *self , PyObject *args );
  5. static PyObject *sys_setcheckinterval ( PyObject *self , PyObject *args );
  6. #ifdef USE_MALLOPT
  7. static PyObject *sys_mdebug ( PyObject *self , PyObject *args );
  8. #endif
  9. static PyObject *sys_getrefcount ( PyObject *self , PyObject *args );
  10. #ifdef COUNT_ALLOCS
  11. static PyObject *sys_getcounts ( PyObject *self , PyObject *args );
  12. #endif
  13. static PyObject *list_builtin_module_names ( void );
  14. static PyObject *makepathobject ( char *path , int delim );
  15. static PyObject *makeargvobject ( int argc , char **argv );
  16. static void mywrite ( char *name , FILE *fp , const char *format , va_list va );
  17.  
  18. static PyObject *sys_get_string_encoding ( PyObject *self , PyObject *args );
  19. static PyObject *sys_set_string_encoding ( PyObject *self , PyObject *args );
  20.